type hash/fnv.sum32

13 uses

	hash/fnv (current package)
		fnv.go#L23: 	sum32   uint32
		fnv.go#L45: 	var s sum32 = offset32
		fnv.go#L88: func (s *sum32) Reset()   { *s = offset32 }
		fnv.go#L95: func (s *sum32) Sum32() uint32  { return uint32(*s) }
		fnv.go#L100: func (s *sum32) Write(data []byte) (int, error) {
		fnv.go#L104: 		hash ^= sum32(c)
		fnv.go#L166: func (s *sum32) Size() int   { return 4 }
		fnv.go#L173: func (s *sum32) BlockSize() int   { return 1 }
		fnv.go#L180: func (s *sum32) Sum(in []byte) []byte {
		fnv.go#L222: func (s *sum32) AppendBinary(b []byte) ([]byte, error) {
		fnv.go#L228: func (s *sum32) MarshalBinary() ([]byte, error) {
		fnv.go#L284: func (s *sum32) UnmarshalBinary(b []byte) error {
		fnv.go#L291: 	*s = sum32(byteorder.BEUint32(b[4:]))